home *** CD-ROM | disk | FTP | other *** search
/ Cinema Studio: Frank Herrmann / Cinema Studio - Frank Herrmann.iso / tools / dust / dusthelp / arexx < prev    next >
Text File  |  1995-05-24  |  1KB  |  36 lines

  1.                           ARexx
  2. -----------------------------------------------------------------
  3.  You want to control Dust via other applications or GUIs ?
  4.  So you need an ARexx-Port.
  5.  
  6.      NAME: "Dust"
  7.  COMMANDS: PARSE <cmd> - let Dust parse the string <cmd>,
  8.                          all Dust-commands except "EXIT" are allowed
  9.            EXIT        - leave the ARexx-mode
  10.  
  11.  To enter the Dust-ARexx-Mode simply type "REXX".
  12.  
  13.  
  14.  
  15.  ARexx-Examples via "rx":
  16.  
  17.   rx "address 'Dust' 'EXIT'"
  18.   rx "address 'Dust' 'PARSE ?'" (invokes general help)
  19.   rx "address 'Dust' 'PARSE load(1,s1)'" (loads an object)
  20.  
  21.  
  22.  Other example:
  23.  You wrote an GUI and want to start and quit Dust in the background.
  24.  So write a batchfile "rexx.dust" containing the lines:
  25.  
  26.   rexx
  27.   exit
  28.  
  29.  and start Dust typing "Dust rexx.bat".
  30.  So Dust will execute your PARSE-calls until you call the ARexx-EXIT-
  31.  command. After that the batch-execution will be continued = exit.
  32.  
  33.  If you don't want to get any text-output from Dust you have to
  34.  set the QUIET-parameter.
  35.  
  36.